body { margin: 0;   padding-top: 70px;  font-family: 'MyCustomFont', sans-serif; letter-spacing: 0.5px }
    
@font-face {
  font-family: 'MyCustomFont';
  src: url('Font/Cairo-Black.ttf') format('woff2'),
    
}




/*nav*/

nav {
      background-color: #106b29;
      color: white;
     /* padding: 1rem;*/
      
      display: flex;
      /**/justify-content: center;
      align-items: center;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      opacity: 0.97;

    }
    .navspace {
      margin:  auto;
      display: flex;
        gap: 25px; 
    }

    .logo {
  margin-right: auto; /* يزق اللوجو أقصى الشمال */
}
    .imggg {
  /*position: fixed;*/
  /*top: 20px;
  left: 20px;*/
  padding-left: 9rem;
  padding-top: 8px;
  padding-bottom: 8px;
  
 filter: brightness(0) invert(1);
  width: 65px;
  height: auto;
  z-index: 999;
  opacity: 0.95;
}
    nav a {
      padding-right: 25px;
      color: rgb(255, 255, 255);
      text-decoration: none;
      margin: 0 1rem;
      font-size: 18px;
      transition: color 0.3s ease;
     
    }
    nav a:hover {
      color:#BDCF9B
    }

  .language-switch select {
  padding: 5px 10px;
  margin-right: 100px;
  font-size: 16px;
  border-radius: 5px;
 /* border: 1px solid #ccc;*/
  background-color: white;
  cursor: pointer;
}

.language-switch select:hover {
  border-color: #BDCF9B;
}


/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    /*background-color: #fff;*/
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 2rem;
}

.contact-info {
    flex: 0.7;
    
}

.info-item {
    display: flex;
    align-items: right;
    text-align: left;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #000000;
  /*  background-color: #ddd;*/
    border-radius:10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form {
    flex: 1;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.send-btn {
    background-color: #333;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.send-btn:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
    }
}

.footer {
  background-color: #106b29;
  color: #333;
  padding: 2rem 1rem;
  margin-top: 3rem;

}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.footer-logo img {
  margin-top: 30px;
  width: 110px;
   filter: grayscale(100%);
 filter: brightness(0) invert(1);
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 2  0px;
  
}

.footer-links a:hover {
  color: #BDCF9B;
}

.footer-social img {
  width: 24px;
  margin: 0 5px;
  transition: transform 0.3s ease;
  /*background-color: white;*/
  
  border-radius: 25%;
  
}

.footer-social img:hover {
  transform: scale(1.1);
  
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #e0cece;
}

/* زرار الهامبورجر */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-right: 20px;
  color: white;
}

/* منيو الموبايل */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #106b29;
  position: absolute;
  top: 70px;
  right: 0;
  width: 200px;
  padding: 1rem;
  z-index: 9999;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 10px;
  font-size: 18px;
}

.mobile-menu a:hover {
  background: #BDCF9B;
  color: black;
  border-radius: 5px;
}

/* إظهار الهامبورجر وإخفاء اللينكات في الموبايل */
@media (max-width: 768px) {
  .navspace {
    display: none;
  }
  .hamburger {
    display: block;
  }
    .imggg{
     padding-left: 1rem;
  }
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-logo img {
    margin: auto;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-social {
    margin-top: 1rem;
  }
}